home *** CD-ROM | disk | FTP | other *** search
/ QRZ! Ham Radio 4 / QRZ Ham Radio Callsign Database - Volume 4.iso / files / dsp / 56ktools / dspkgctr.z / dspkgctr / gcc / c-convert.c < prev    next >
C/C++ Source or Header  |  1992-06-08  |  13KB  |  417 lines

  1. /* Language-level data type conversion for GNU C.
  2.    Copyright (C) 1987, 1988 Free Software Foundation, Inc.
  3.  
  4.    $Id: c-convert.c,v 1.5 91/10/23 15:43:40 pete Exp $
  5.  
  6. This file is part of GNU CC.
  7.  
  8. GNU CC is free software; you can redistribute it and/or modify
  9. it under the terms of the GNU General Public License as published by
  10. the Free Software Foundation; either version 1, or (at your option)
  11. any later version.
  12.  
  13. GNU CC is distributed in the hope that it will be useful,
  14. but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16. GNU General Public License for more details.
  17.  
  18. You should have received a copy of the GNU General Public License
  19. along with GNU CC; see the file COPYING.  If not, write to
  20. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  21.  
  22.  
  23. /* This file contains the functions for converting C expressions
  24.    to different data types.  The only entry point is `convert'.
  25.    Every language front end must have a `convert' function
  26.    but what kind of conversions it does will depend on the language.  */
  27.  
  28. #include "config.h"
  29. #include "tree.h"
  30.  
  31. #if defined( _MSDOS )
  32. void error ( char *, ... );
  33. #endif
  34.  
  35. /* Change of width--truncation and extension of integers or reals--
  36.    is represented with NOP_EXPR.  Proper functioning of many things
  37.    assumes that no other conversions can be NOP_EXPRs.
  38.  
  39.    Conversion between integer and pointer is represented with CONVERT_EXPR.
  40.    Converting integer to real uses FLOAT_EXPR
  41.    and real to integer uses FIX_TRUNC_EXPR.
  42.  
  43.    Here is a list of all the functions that assume that widening and
  44.    narrowing is always done with a NOP_EXPR:
  45.      In c-convert.c, convert_to_integer.
  46.      In c-typeck.c, build_binary_op_nodefault (boolean ops),
  47.         and truthvalue_conversion.
  48.      In expr.c: expand_expr, for operands of a MULT_EXPR.
  49.      In fold-const.c: fold.
  50.      In tree.c: get_narrower and get_unwidened.  */
  51.  
  52. /* Subroutines of `convert'.  */
  53.  
  54. static tree
  55. convert_to_pointer (type, expr)
  56.      tree type, expr;
  57. {
  58.   register tree intype = TREE_TYPE (expr);
  59.   register enum tree_code form = TREE_CODE (intype);
  60.   
  61.   if (integer_zerop (expr))
  62.     {
  63.       if (type == TREE_TYPE (null_pointer_node))
  64.     return null_pointer_node;
  65.       expr = build_int_2 (0, 0);
  66.       TREE_TYPE (expr) = type;
  67.       return expr;
  68.     }
  69.  
  70.   if (form == POINTER_TYPE)
  71.     return build (NOP_EXPR, type, expr);
  72.  
  73.  
  74.   if (form == INTEGER_TYPE || form == ENUMERAL_TYPE)
  75.     {
  76. #if ! defined( DSP56000 )
  77.       if (type_precision (intype) == POINTER_SIZE)
  78. #else
  79.       /* this looks like it is wrong in general, but it only shows up
  80.      when pointers are smaller than ints. the fact that when we try
  81.      to convert an int (24 bits) into a pointer (16 bits), we call
  82.      convert which recursively calls this function with the same 
  83.      arguments. this leads to infinite stack growth && BOOM! */
  84. #endif
  85.     return build (CONVERT_EXPR, type, expr);
  86.       return convert_to_pointer (type,
  87.                  convert (type_for_size (POINTER_SIZE, 0),
  88.                       expr));
  89.     }
  90.  
  91.   error ("cannot convert to a pointer type");
  92.  
  93.   return null_pointer_node;
  94. }
  95.  
  96. static tree
  97. convert_to_real (type, expr)
  98.      tree type, expr;
  99. {
  100.   register enum tree_code form = TREE_CODE (TREE_TYPE (expr));
  101.   extern int flag_float_store;
  102.  
  103.   if (form == REAL_TYPE)
  104.     return build (flag_float_store ? CONVERT_EXPR : NOP_EXPR,
  105.           type, expr);
  106.  
  107.   if (form == INTEGER_TYPE || form == ENUMERAL_TYPE)
  108.     return build (FLOAT_EXPR, type, expr);
  109.  
  110.   if (form == POINTER_TYPE)
  111.     error ("pointer value used where a float was expected");
  112.   else
  113.     error ("aggregate value used where a float was expected");
  114.  
  115.   {
  116.     register tree tem = make_node (REAL_CST);
  117.     TREE_TYPE (tem) = type;
  118.     TREE_REAL_CST (tem) = REAL_VALUE_ATOF ("0.0");
  119.     return tem;
  120.   }
  121. }
  122.  
  123. /* The result of this is always supposed to be a newly created tree node
  124.    not in use in any existing structure.  */
  125.  
  126. static tree
  127. convert_to_integer (type, expr)
  128.      tree type, expr;
  129. {
  130.   register tree intype = TREE_TYPE (expr);
  131.   register enum tree_code form = TREE_CODE (intype);
  132.   extern tree build_binary_op_nodefault ();
  133.   extern tree build_unary_op ();
  134.  
  135.   if (form == POINTER_TYPE)
  136.     {
  137.       if (integer_zerop (expr))
  138.     expr = integer_zero_node;
  139.       else
  140. #if defined( DSP56000 ) || defined( DSP96000 )
  141.     expr = fold (build (CONVERT_EXPR,
  142.                 type_for_size (BITS_PER_UNIT, 0), expr));
  143. #else
  144.     expr = fold (build (CONVERT_EXPR,
  145.                 type_for_size (POINTER_SIZE, 0), expr));
  146. #endif
  147.       intype = TREE_TYPE (expr);
  148.       form = TREE_CODE (intype);
  149.       if (intype == type)
  150.     return expr;
  151.     }
  152.  
  153.   if (form == INTEGER_TYPE || form == ENUMERAL_TYPE)
  154.     {
  155.       register int outprec = TYPE_PRECISION (type);
  156.       register int inprec = TYPE_PRECISION (intype);
  157.       register enum tree_code ex_form = TREE_CODE (expr);
  158.  
  159.       if (outprec >= inprec)
  160.     return build (NOP_EXPR, type, expr);
  161.  
  162. /* Here detect when we can distribute the truncation down past some arithmetic.
  163.    For example, if adding two longs and converting to an int,
  164.    we can equally well convert both to ints and then add.
  165.    For the operations handled here, such truncation distribution
  166.    is always safe.
  167.    It is desirable in these cases:
  168.    1) when truncating down to full-word from a larger size
  169.    2) when truncating takes no work.
  170.    3) when at least one operand of the arithmetic has been extended
  171.    (as by C's default conversions).  In this case we need two conversions
  172.    if we do the arithmetic as already requested, so we might as well
  173.    truncate both and then combine.  Perhaps that way we need only one.
  174.  
  175.    Note that in general we cannot do the arithmetic in a type
  176.    shorter than the desired result of conversion, even if the operands
  177.    are both extended from a shorter type, because they might overflow
  178.    if combined in that type.  The exceptions to this--the times when
  179.    two narrow values can be combined in their narrow type even to
  180.    make a wider result--are handled by "shorten" in build_binary_op.  */
  181.  
  182.       switch (ex_form)
  183.     {
  184.     case RSHIFT_EXPR:
  185.       /* We can pass truncation down through right shifting
  186.          when the shift count is a negative constant.  */
  187.       if (TREE_CODE (TREE_OPERAND (expr, 1)) != INTEGER_CST
  188.           || TREE_INT_CST_LOW (TREE_OPERAND (expr, 1)) > 0)
  189.         break;
  190.       goto trunc1;
  191.  
  192.     case LSHIFT_EXPR:
  193.       /* We can pass truncation down through left shifting
  194.          when the shift count is a positive constant.  */
  195.       if (TREE_CODE (TREE_OPERAND (expr, 1)) != INTEGER_CST
  196.           || TREE_INT_CST_LOW (TREE_OPERAND (expr, 1)) < 0)
  197.         break;
  198.       /* In this case, shifting is like multiplication.  */
  199.       goto trunc1;
  200.  
  201.     case MAX_EXPR:
  202.     case MIN_EXPR:
  203.     case MULT_EXPR:
  204.       {
  205.         tree arg0 = get_unwidened (TREE_OPERAND (expr, 0), type);
  206.         tree arg1 = get_unwidened (TREE_OPERAND (expr, 1), type);
  207.  
  208.         /* Don't distribute unless the output precision is at least as big
  209.            as the actual inputs.  Otherwise, the comparison of the
  210.            truncated values will be wrong.  */
  211.         if (outprec >= TYPE_PRECISION (TREE_TYPE (arg0))
  212.         && outprec >= TYPE_PRECISION (TREE_TYPE (arg1))
  213.         /* If signedness of arg0 and arg1 don't match,
  214.            we can't necessarily find a type to compare them in.  */
  215.         && (TREE_UNSIGNED (TREE_TYPE (arg0))
  216.             == TREE_UNSIGNED (TREE_TYPE (arg1))))
  217.           goto trunc1;
  218.         break;
  219.       }
  220.  
  221.     case PLUS_EXPR:
  222.     case MINUS_EXPR:
  223.     case BIT_AND_EXPR:
  224.     case BIT_IOR_EXPR:
  225.     case BIT_XOR_EXPR:
  226.     case BIT_ANDTC_EXPR:
  227.     trunc1:
  228.       {
  229.         tree arg0 = get_unwidened (TREE_OPERAND (expr, 0), type);
  230.         tree arg1 = get_unwidened (TREE_OPERAND (expr, 1), type);
  231.  
  232.         if (outprec >= BITS_PER_WORD
  233.         || TRULY_NOOP_TRUNCATION (outprec, inprec)
  234.         || inprec > TYPE_PRECISION (TREE_TYPE (arg0))
  235.         || inprec > TYPE_PRECISION (TREE_TYPE (arg1)))
  236.           {
  237.         /* Do the arithmetic in type TYPEX,
  238.            then convert result to TYPE.  */
  239.         register tree typex = type;
  240.  
  241.         /* Can't do arithmetic in enumeral types
  242.            so use an integer type that will hold the values.  */
  243.         if (TREE_CODE (typex) == ENUMERAL_TYPE)
  244.           typex = type_for_size (TYPE_PRECISION (typex),
  245.                      TREE_UNSIGNED (typex));
  246.  
  247.         /* But now perhaps TYPEX is as wide as INPREC.
  248.            In that case, do nothing special here.
  249.            (Otherwise would recurse infinitely in convert.  */
  250.         if (TYPE_PRECISION (typex) != inprec)
  251.           {
  252.             /* Don't do unsigned arithmetic where signed was wanted,
  253.                or vice versa.
  254.                Exception: if the original operands were unsigned
  255.                then can safely do the work as unsigned.
  256.                And we may need to do it as unsigned
  257.                if we truncate to the original size.  */
  258.             typex = ((TREE_UNSIGNED (TREE_TYPE (expr))
  259.                   || TREE_UNSIGNED (TREE_TYPE (arg0)))
  260.                  ? unsigned_type (typex) : signed_type (typex));
  261.             return convert (type,
  262.                     build_binary_op_nodefault (ex_form,
  263.                                    convert (typex, arg0),
  264.                                    convert (typex, arg1),
  265.                                    ex_form));
  266.           }
  267.           }
  268.       }
  269.       break;
  270.  
  271.     case EQ_EXPR:
  272.     case NE_EXPR:
  273.     case GT_EXPR:
  274.     case GE_EXPR:
  275.     case LT_EXPR:
  276.     case LE_EXPR:
  277.     case TRUTH_AND_EXPR:
  278.     case TRUTH_ANDIF_EXPR:
  279.     case TRUTH_OR_EXPR:
  280.     case TRUTH_ORIF_EXPR:
  281.     case TRUTH_NOT_EXPR:
  282.       /* If we want result of comparison converted to a byte,
  283.          we can just regard it as a byte, since it is 0 or 1.  */
  284.       TREE_TYPE (expr) = type;
  285.       return expr;
  286.  
  287.     case NEGATE_EXPR:
  288.     case BIT_NOT_EXPR:
  289.     case ABS_EXPR:
  290.       {
  291.         register tree typex = type;
  292.  
  293.         /* Can't do arithmetic in enumeral types
  294.            so use an integer type that will hold the values.  */
  295.         if (TREE_CODE (typex) == ENUMERAL_TYPE)
  296.           typex = type_for_size (TYPE_PRECISION (typex),
  297.                      TREE_UNSIGNED (typex));
  298.  
  299.         /* But now perhaps TYPEX is as wide as INPREC.
  300.            In that case, do nothing special here.
  301.            (Otherwise would recurse infinitely in convert.  */
  302.         if (TYPE_PRECISION (typex) != inprec)
  303.           {
  304.         /* Don't do unsigned arithmetic where signed was wanted,
  305.            or vice versa.  */
  306.         typex = (TREE_UNSIGNED (TREE_TYPE (expr))
  307.              ? unsigned_type (typex) : signed_type (typex));
  308.         return convert (type,
  309.                 build_unary_op (ex_form,
  310.                         convert (typex, TREE_OPERAND (expr, 0)),
  311.                         1));
  312.           }
  313.       }
  314.  
  315.     case NOP_EXPR:
  316.       /* If truncating after truncating, might as well do all at once.
  317.          If truncating after extending, we may get rid of wasted work.  */
  318.       return convert (type, get_unwidened (TREE_OPERAND (expr, 0), type));
  319.  
  320.     case COND_EXPR:
  321.       /* Can treat the two alternative values like the operands
  322.          of an arithmetic expression.  */
  323.       {
  324.         tree arg1 = get_unwidened (TREE_OPERAND (expr, 1), type);
  325.         tree arg2 = get_unwidened (TREE_OPERAND (expr, 2), type);
  326.  
  327.         if (outprec >= BITS_PER_WORD
  328.         || TRULY_NOOP_TRUNCATION (outprec, inprec)
  329.         || inprec > TYPE_PRECISION (TREE_TYPE (arg1))
  330.         || inprec > TYPE_PRECISION (TREE_TYPE (arg2)))
  331.           {
  332.         /* Do the arithmetic in type TYPEX,
  333.            then convert result to TYPE.  */
  334.         register tree typex = type;
  335.  
  336.         /* Can't do arithmetic in enumeral types
  337.            so use an integer type that will hold the values.  */
  338.         if (TREE_CODE (typex) == ENUMERAL_TYPE)
  339.           typex = type_for_size (TYPE_PRECISION (typex),
  340.                      TREE_UNSIGNED (typex));
  341.  
  342.         /* But now perhaps TYPEX is as wide as INPREC.
  343.            In that case, do nothing special here.
  344.            (Otherwise would recurse infinitely in convert.  */
  345.         if (TYPE_PRECISION (typex) != inprec)
  346.           {
  347.             /* Don't do unsigned arithmetic where signed was wanted,
  348.                or vice versa.  */
  349.             typex = (TREE_UNSIGNED (TREE_TYPE (expr))
  350.                  ? unsigned_type (typex) : signed_type (typex));
  351.             return convert (type,
  352.                     build (COND_EXPR, typex,
  353.                        TREE_OPERAND (expr, 0),
  354.                        convert (typex, arg1),
  355.                        convert (typex, arg2)));
  356.           }
  357.           }
  358.       }
  359.  
  360.     }
  361.  
  362.       return build (NOP_EXPR, type, expr);
  363.     }
  364.  
  365.   if (form == REAL_TYPE)
  366.     return build (FIX_TRUNC_EXPR, type, expr);
  367.  
  368.   error ("aggregate value used where an integer was expected");
  369.  
  370.   {
  371.     register tree tem = build_int_2 (0, 0);
  372.     TREE_TYPE (tem) = type;
  373.     return tem;
  374.   }
  375. }
  376.  
  377. /* Create an expression whose value is that of EXPR,
  378.    converted to type TYPE.  The TREE_TYPE of the value
  379.    is always TYPE.  This function implements all reasonable
  380.    conversions; callers should filter out those that are
  381.    not permitted by the language being compiled.  */
  382.  
  383. tree
  384. convert (type, expr)
  385.      tree type, expr;
  386. {
  387.   register tree e = expr;
  388.   register enum tree_code code = TREE_CODE (type);
  389.  
  390.   if (type == TREE_TYPE (expr) || TREE_CODE (expr) == ERROR_MARK)
  391.     return expr;
  392.   if (TREE_CODE (TREE_TYPE (expr)) == ERROR_MARK)
  393.     return error_mark_node;
  394.   if (TREE_CODE (TREE_TYPE (expr)) == VOID_TYPE)
  395.     {
  396.       error ("void value not ignored as it ought to be");
  397.       return error_mark_node;
  398.     }
  399.   if (code == VOID_TYPE)
  400.     return build (CONVERT_EXPR, type, e);
  401. #if 0
  402.   /* This is incorrect.  A truncation can't be stripped this way.
  403.      Extensions will be stripped by the use of get_unwidened.  */
  404.   if (TREE_CODE (expr) == NOP_EXPR)
  405.     return convert (type, TREE_OPERAND (expr, 0));
  406. #endif
  407.   if (code == INTEGER_TYPE || code == ENUMERAL_TYPE)
  408.     return fold (convert_to_integer (type, e));
  409.   if (code == POINTER_TYPE)
  410.     return fold (convert_to_pointer (type, e));
  411.   if (code == REAL_TYPE)
  412.     return fold (convert_to_real (type, e));
  413.  
  414.   error ("conversion to non-scalar type requested");
  415.   return error_mark_node;
  416. }
  417.